KeyValuePairs Property

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Gets a read-only collection of all key-value pairs in the dictionary. If a key has multiple values associated with it, then a key-value pair is present for each value associated with the key.

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
public override sealed ICollection<KeyValuePair<TKey, TValue>> KeyValuePairs{ get;}
Visual Basic (Declaration)
Public Overrides NotOverridable ReadOnly Property KeyValuePairs As ICollection(Of KeyValuePair(Of TKey, TValue))
Visual C++
public:
virtual property ICollection<KeyValuePair<TKey, TValue>>^ KeyValuePairs {
	ICollection<KeyValuePair<TKey, TValue>>^ get () override sealed;
}

See Also